[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
  Function            EMMversion - version of Expanded Memory Manager

  Syntax              boolean EMMversion(byte *version);

  Prototype in        ibm.h

  Remarks             determines the version of the Expanded Memory
                      Manager. No memory is allocated.

  Return value        returns TRUE if successful (and *version is the
                      version id,) FALSE if an error occurred (and
                      *version is the error code.)

  Note                this function is available under EMM 3.2 specs.

  See also            ibm.h
                      EMSGetStatus(), isEMSavail(), ESMinfo(),
                      EMSpages(), EMSwarmbootprep()

  Example             #include <ibm.h>

                      main()
                      {
                           byte ver;

                           if (isEMSavail())
                                if (EMMversion(&ver))    /* success */
                                     printf("EMM version id %X\n",ver);
                                else                /* error */
                                     printf("EMM error code %X\n",ver);
                      }

See Also: EMSGetStatus() EMSinfo() EMSpages() EMSwarmbootprep() isEMSavail()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson